-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Spearbit Audit Changes #25
Conversation
Coverage after merging spearbit-fixes into master will be
Coverage Report
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM pending spearbit confirmation that audit is finished and that the don't want to do issue based PRs
if ( | ||
gracePeriod_ < MINIMUM_GRACE_PERIOD | ||
) revert InvalidInitParams(); | ||
|
||
_updateDelay(delay_); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Original comment here
@@ -191,7 +182,7 @@ contract Executor is IExecutor, AccessControl { | |||
function getCurrentState(uint256 actionsSetId) public view override returns (ActionsSetState) { | |||
if (actionsSetCount <= actionsSetId) revert InvalidActionsSetId(); | |||
|
|||
ActionsSet storage actionsSet =_actionsSets[actionsSetId]; | |||
ActionsSet storage actionsSet = _actionsSets[actionsSetId]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Original comment here
@@ -208,7 +199,6 @@ contract Executor is IExecutor, AccessControl { | |||
uint256 value, | |||
string memory signature, | |||
bytes memory data, | |||
uint256 executionTime, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Original comment here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
This PR addresses the following Spearbit issues: https://github.com/spearbit-audits/review-makerdao/issues/11 |
Changes:
_executeTransaction
IExecutor
comment